4e06d5f9d7d0d68156f0f7669f3997902ad6566c,enterprise/core-edge/src/test/java/org/neo4j/coreedge/raft/state/DurableStateStorageIT.java,DurableStateStorageIT,shouldProperlyRecoveryAfterCrashOnFileForceDuringWrite,#,127
Before Change
StoreChannel.class.getMethod( "force", boolean.class ) ),
normalFSA );
SelectiveFileSystemAbstraction combinedFSA = new SelectiveFileSystemAbstraction(
new File( testDir.directory(), "long.a" ), breakingFSA, normalFSA );
LongState persistedState = new LongState( combinedFSA, testDir.directory(), 14 );
long lastValue = 0;
After Change
StoreChannel.class.getMethod( "force", boolean.class ) ),
normalFSA );
SelectiveFileSystemAbstraction combinedFSA = new SelectiveFileSystemAbstraction(
new File( new File( testDir.directory(), "long-state" ), "long.a" ), breakingFSA, normalFSA );
LongState persistedState = new LongState( combinedFSA, testDir.directory(), 14 );
long lastValue = 0;